home *** CD-ROM | disk | FTP | other *** search
/ Digital Photo Book 16: Sister 7 / Digital Photo Book 16: Sister 7.iso / mac / DATA / main.dir / 00012_Script_NAVIÉoÅ[ < prev    next >
Text File  |  2004-11-21  |  555b  |  33 lines

  1. property spritenum
  2. property ishide
  3. property org_y
  4.  
  5. on beginsprite
  6.   ishide = false
  7.   org_y = sprite(spritenum).locV
  8. end
  9.  
  10. on endsprite
  11.   sprite(spritenum).locV = org_y
  12. end
  13.  
  14. on navi_hide
  15.   ishide = true
  16. end
  17.  
  18. on navi_show
  19.   ishide = false
  20. end
  21.  
  22. on exitframe
  23.   if ishide then
  24.     if org_y + 32 >  sprite(spritenum).locV then 
  25.       sprite(spritenum).locV = sprite(spritenum).locV + 4
  26.     end if
  27.   else
  28.     if org_y <  sprite(spritenum).locV then
  29.       sprite(spritenum).locV = sprite(spritenum).locV - 4
  30.     end if
  31.   end if
  32. end
  33.